Provision E2E on the platform VM - #41
Open
vitramir wants to merge 1 commit into
Open
Conversation
The bootstrap action built a k3d cluster and left its state for the test runner to read. run-tests moved to the VM's contract and reads AGYN_API_TOKEN from the environment, so every run since has died on "AGYN_API_TOKEN is not set; run a provisioning action before this one" before a single test ran. DevSpace follows the install to agyn-platform, which it moved to on 2026-08-09. "platform" is empty, so the patch and sync looked for a deployment that was no longer there. The job gains the timeout and concurrency group the VM-provisioned workflows carry: a boot that hangs otherwise runs to the six-hour default, and pushes queue behind each other on a 60-minute job.
vitramir
force-pushed
the
ci/provision-on-the-vm
branch
from
August 12, 2026 18:01
c556716 to
c7a95a6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
run-testsmoved to the VM's contract and readsAGYN_API_TOKENfrom the environment. The bootstrap action never exported it — it left Terraform state behind instead — so every run since has died before a single test ran:DevSpace follows the install to
agyn-platform, which it moved to on 2026-08-09.platformis empty, so the patch and sync looked for a deployment that was no longer there — the same fix console-app made in agynio/console-app#140.The job gains the timeout and concurrency group the already-migrated workflows carry.
Depends on agynio/e2e#255, which boots an image the upgrade can actually reach.